d9d7eb193ff6ba6132d1aa5f851221b23ac2dddb,opennms-webapp/src/main/java/org/opennms/web/controller/outage/OutageFilterController.java,OutageFilterController,handleRequestInternal,#HttpServletRequest#HttpServletResponse#,58
Before Change
if (limitString != null) {
try {
limit = WebSecurityUtils.safeParseInt(limitString);
} catch (NumberFormatException e) {
// do nothing, the default is aready set
}
After Change
if (limitString != null) {
try {
int newlimit = WebSecurityUtils.safeParseInt(limitString);
if (newlimit > 0) {
limit = newlimit;
}
} catch (NumberFormatException e) {